home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / BAGOSRC.ARJ / BAGO < prev    next >
Text File  |  1992-01-20  |  2KB  |  48 lines

  1. # The utility MAKE.EXE compares the
  2. # creation date of the file to the left of the colon with the file(s)
  3. # to the right of the colon.  If the file(s) on the right are newer
  4. # then the file on the left, Make will execute all of the command lines
  5. # following this line that are indented by at least one tab or space.
  6. # Any valid MS-DOS command line may be used.
  7.  
  8. # This actually depends on about a billion bitmaps - dependencies may
  9. # not include everything.  When in doubt, touch bago.rc
  10. bago.res: bago.rc bago.h bago3.ico bikini.ico eyes.bmp bago \
  11.           a0.bmp b0.bmp c0.bmp d0.bmp e0.bmp f0.bmp g0.bmp h0.bmp i0.bmp \
  12.       j0.bmp k0.bmp l0.bmp m0.bmp n0.bmp o0.bmp p0.bmp q0.bmp r0.bmp \
  13.       s0.bmp t0.bmp u0.bmp v0.bmp w0.bmp x0.bmp y0.bmp z0.bmp \
  14.           a1.bmp b1.bmp c1.bmp d1.bmp e1.bmp f1.bmp g1.bmp h1.bmp i1.bmp \
  15.       j1.bmp k1.bmp l1.bmp m1.bmp n1.bmp o1.bmp p1.bmp q1.bmp r1.bmp \
  16.       s1.bmp t1.bmp u1.bmp v1.bmp w1.bmp x1.bmp y1.bmp z1.bmp \
  17.           a2.bmp b2.bmp c2.bmp d2.bmp e2.bmp f2.bmp g2.bmp h2.bmp i2.bmp \
  18.       j2.bmp k2.bmp l2.bmp m2.bmp n2.bmp o2.bmp p2.bmp q2.bmp r2.bmp \
  19.       s2.bmp t2.bmp u2.bmp v2.bmp w2.bmp x2.bmp y2.bmp z2.bmp \
  20.           a3.bmp b3.bmp c3.bmp d3.bmp e3.bmp f3.bmp g3.bmp h3.bmp i3.bmp \
  21.       j3.bmp k3.bmp l3.bmp m3.bmp n3.bmp o3.bmp p3.bmp q3.bmp r3.bmp \
  22.       s3.bmp t3.bmp u3.bmp v3.bmp w3.bmp x3.bmp y3.bmp z3.bmp \
  23.       enterup.bmp enterdn.bmp stopup.bmp stopdn.bmp bago.cur
  24.     rc -r bago.rc
  25.  
  26. # Update the object file if necessary
  27. # Be sure to select the right floating point option here
  28.  
  29. bago.obj: bago.c bago.h bago
  30.     cl /c /FPa /Gsw /Oas /Zpe bago.c
  31. #    cl -c /FPa /Gsw /Oas /Zpe bago.c
  32. #    cl -c -FPa -Gsw -Oas -Zpe bago.c
  33. #    cl -c -FPa -Gw -Oas -Zpe bago.c
  34.  
  35. # Update the executable file if necessary, and if so, add the resource back in.
  36. # Remember that you need special windows-built library for floating point.
  37. # The /NOE must be included when linking with Windows libraries.
  38.  
  39. bago.exe: bago.obj bago.res bago.def bago
  40.    link /NOE /NOD bago, , NUL, libw+slibcaw, bago
  41.    rc bago.res
  42. #   link4 /NOE /NOD bago, , NUL, slibw+slibcaw, bago
  43. #   link4 /NOE bago, , , slibw, bago.def
  44.  
  45. bago.hlp: bago.rtf bago.hpj face.bmp enterup.bmp stopup.bmp rack.bmp
  46.    del bago.ph
  47.    hc bago
  48.